@fingerprintjs/fingerprintjs-pro is an advanced browser fingerprinting library that helps developers identify users across different sessions and devices. It provides robust and accurate identification by combining various browser and device attributes.
What are @fingerprintjs/fingerprintjs-pro's main functionalities?
Visitor Identification
This feature allows you to identify a visitor by generating a unique visitor ID based on their browser and device attributes.
ClientJS is a JavaScript library for browser fingerprinting and device detection. It provides basic functionalities for identifying users but lacks the advanced features and accuracy of @fingerprintjs/fingerprintjs-pro.
FingerprintJS2 is an open-source browser fingerprinting library that generates a unique identifier for a browser. While it offers good basic fingerprinting capabilities, it does not provide the advanced features like bot detection and incognito mode detection available in @fingerprintjs/fingerprintjs-pro.
UA-Parser-JS is a JavaScript library to detect Browser, Engine, OS, CPU, and Device type/model from User-Agent data. It is more focused on parsing user-agent strings rather than comprehensive fingerprinting and lacks the advanced identification features of @fingerprintjs/fingerprintjs-pro.
Makes a website visitor identifier from a browser fingerprint.
Unlike cookies and local storage, fingerprint stays the same in incognito/private mode and even when browser data is purged.
Provides additional information and higher accuracy compared to Open Source FingerprintJS.
After registration go to the dashboard and select the created subscription
Go the "API Keys" page in the navigation side bar on the left side of the page
Copy a key with type "Public"
Install from NPM
npm i @fingerprintjs/fingerprintjs-pro
# or
yarn add @fingerprintjs/fingerprintjs-pro
importFingerprintJSfrom'@fingerprintjs/fingerprintjs-pro'// Initialize an agent at application startup.const fpPromise = FingerprintJS.load({ apiKey: 'your-pro-key' })
;(async () => {
// Get the visitor identifier when you need it.const fp = await fpPromise
const result = await fp.get()
// This is the visitor identifier:const visitorId = result.visitorIdconsole.log(visitorId)
})()
<script>// Initialize the agent at application startup.const fpPromise = import('https://fpjscdn.net/v3/your-pro-key')
.then(FingerprintJS =>FingerprintJS.load())
// Get the visitor identifier when you need it.
fpPromise
.then(fp => fp.get())
.then(result => {
// This is the visitor identifier:const visitorId = result.visitorIdconsole.log(visitorId)
})
</script>
Note that you need to replace your-pro-key with a public API key from the dashboard.
The npm package @fingerprintjs/fingerprintjs-pro receives a total of 112,901 weekly downloads. As such, @fingerprintjs/fingerprintjs-pro popularity was classified as popular.
We found that @fingerprintjs/fingerprintjs-pro demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.It has 3 open source maintainers collaborating on the project.
Package last updated on 13 Feb 2025
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Ransomware payment rates hit an all-time low in 2024 as law enforcement crackdowns, stronger defenses, and shifting policies make attacks riskier and less profitable.